StoryCoder: Narrative Reformulation for Structured Reasoning in LLM Code Generation

arXiv cs.CL / 4/17/2026

📰 NewsDeveloper Stack & InfrastructureTools & Practical UsageModels & Research

Key Points

  • StoryCoder is a narrative reformulation framework that rewrites LLM code-generation prompts into coherent natural-language narratives, rather than relying on scattered condition injection or simple rephrasings.
  • Each narrative is structured into three components—task overview, constraints, and example test cases—tailored by the chosen algorithm and genre to provide better problem representation.
  • Experiments across 11 LLMs on HumanEval, LiveCodeBench, and CodeForces show consistent accuracy improvements, averaging +18.7% in zero-shot pass@10.
  • The study finds that narrative reformulation improves not only correctness but also strategic algorithm selection, reduces implementation mistakes, and yields more modular code.
  • The benefits are linked to narrative coherence and genre alignment, indicating the importance of structured prompt representation for code generation across model types and sizes.

Abstract

Effective code generation requires both model capability and a problem representation that carefully structures how models reason and plan. Existing approaches augment reasoning steps or inject specific structure into how models think, but leave scattered problem conditions unchanged. Inspired by the way humans organize fragmented information into coherent explanations, we propose StoryCoder, a narrative reformulation framework that transforms code generation questions into coherent natural language narratives, providing richer contextual structure than simple rephrasings. Each narrative consists of three components: a task overview, constraints, and example test cases, guided by the selected algorithm and genre. Experiments across 11 models on HumanEval, LiveCodeBench, and CodeForces demonstrate consistent improvements, with an average gain of 18.7% in zero-shot pass@10. Beyond accuracy, our analyses reveal that narrative reformulation guides models toward correct algorithmic strategies, reduces implementation errors, and induces a more modular code structure. The analyses further show that these benefits depend on narrative coherence and genre alignment, suggesting that structured problem representation is important for code generation regardless of model scale or architecture. Our code is available at https://github.com/gu-ni/StoryCoder.